home *** CD-ROM | disk | FTP | other *** search
/ Computer Shopper 242 / Issue 242 - April 2008 - DPCS0408DVD.ISO / Software Money Savers / VirtualDub / Source / VirtualDub-1.7.7-src.7z / src / Kasumi / h / blt_spanutils.h < prev    next >
Encoding:
C/C++ Source or Header  |  2006-03-14  |  1.1 KB  |  22 lines

  1. #ifndef f_VD2_KASUMI_BLT_SPANUTILS_H
  2. #define f_VD2_KASUMI_BLT_SPANUTILS_H
  3.  
  4. #include <vd2/system/vdtypes.h>
  5.  
  6. namespace nsVDPixmapSpanUtils {
  7.     void horiz_expand2x_centered    (uint8 *dst, const uint8 *src, sint32 w);
  8.     void horiz_expand2x_coaligned    (uint8 *dst, const uint8 *src, sint32 w);
  9.     void horiz_expand4x_coaligned    (uint8 *dst, const uint8 *src, sint32 w);
  10.     void horiz_compress2x_coaligned    (uint8 *dst, const uint8 *src, sint32 w);
  11.     void horiz_compress2x_centered    (uint8 *dst, const uint8 *src, sint32 w);
  12.     void horiz_compress4x_coaligned    (uint8 *dst, const uint8 *src, sint32 w);
  13.     void horiz_compress4x_centered    (uint8 *dst, const uint8 *src, sint32 w);
  14.     void vert_expand2x_centered        (uint8 *dst, const uint8 *const *srcs, sint32 w, uint8 phase);
  15.     void vert_expand4x_centered        (uint8 *dst, const uint8 *const *srcs, sint32 w, uint8 phase);
  16.     void vert_compress2x_centered_fast    (uint8 *dst, const uint8 *const *srcarray, sint32 w, uint8 phase);
  17.     void vert_compress2x_centered    (uint8 *dst, const uint8 *const *srcarray, sint32 w, uint8 phase);
  18.     void vert_compress4x_centered(uint8 *dst, const uint8 *const *srcarray, sint32 w, uint8 phase);
  19. }
  20.  
  21. #endif
  22.